crypto/tls.cipherSuiteTLS13.id (field)

14 uses

	crypto/tls (current package)
		cipher_suites.go#L197: 	id     uint16
		cipher_suites.go#L675: 		if cipherSuite.id == id {
		handshake_client.go#L296: 		c.quicSetWriteSecret(QUICEncryptionLevelEarly, suite.id, earlyTrafficSecret)
		handshake_client_tls13.go#L213: 	c.cipherSuite = hs.suite.id
		handshake_client_tls13.go#L500: 		c.quicSetWriteSecret(QUICEncryptionLevelHandshake, hs.suite.id, clientSecret)
		handshake_client_tls13.go#L501: 		if err := c.quicSetReadSecret(QUICEncryptionLevelHandshake, hs.suite.id, serverSecret); err != nil {
		handshake_client_tls13.go#L826: 		c.quicSetWriteSecret(QUICEncryptionLevelApplication, hs.suite.id, hs.trafficSecret)
		handshake_server_tls13.go#L197: 	c.cipherSuite = hs.suite.id
		handshake_server_tls13.go#L198: 	hs.hello.cipherSuite = hs.suite.id
		handshake_server_tls13.go#L410: 			sessionState.EarlyData && sessionState.cipherSuite == hs.suite.id &&
		handshake_server_tls13.go#L419: 			if err := c.quicSetReadSecret(QUICEncryptionLevelEarly, hs.suite.id, earlyTrafficSecret); err != nil {
		handshake_server_tls13.go#L760: 		c.quicSetWriteSecret(QUICEncryptionLevelHandshake, hs.suite.id, serverSecret)
		handshake_server_tls13.go#L761: 		if err := c.quicSetReadSecret(QUICEncryptionLevelHandshake, hs.suite.id, clientSecret); err != nil {
		handshake_server_tls13.go#L910: 		c.quicSetWriteSecret(QUICEncryptionLevelApplication, hs.suite.id, serverSecret)